home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / bbs / cuser125.zip / CUINIT.MEX < prev    next >
Text File  |  1997-07-12  |  1KB  |  50 lines

  1. //////////////////////////////////////////////////////////////////////////////
  2. //                                                                          //
  3. // CoolUser V1.25 (C)1996-1997 Neil Staib - Initialize File                 //
  4. //                                                                          //
  5. // MEX: Copywrite 1990, 1995 by Lanius Corporation. All Rights reserved.    //
  6. //                                                                          //
  7. //////////////////////////////////////////////////////////////////////////////
  8. #include <max.mh>                                                                                                                                                        include <max.mh>
  9. #define INCL_global
  10. #define INCL_cooluser
  11. #include <language.mh>
  12. #include <cooluser.mh>
  13.  
  14. void main()
  15. {
  16.   int:ck1, ck2, ck3, ck4;
  17.  
  18.   init_lang_cooluser();
  19.   log(":COOLUSER: "+ str_st_log_init);
  20.  
  21.   ck1:=checkfile("cucheck.1");
  22.  
  23.   if (ck1 = 0)
  24.   {
  25.     remove(str_st_dir_txt + "cucheck.1");
  26.   }
  27.  
  28.   ck2:=checkfile("cucheck.2");
  29.  
  30.   if (ck2 = 0)
  31.   {
  32.     remove(str_st_dir_txt + "cucheck.2");
  33.   }
  34.  
  35.   ck3:=checkfile("cucheck.3");
  36.  
  37.   if (ck3 = 0)
  38.   {
  39.     remove(str_st_dir_txt + "cucheck.3");
  40.   }
  41.  
  42.   ck4:=checkfile("cucheck.4");
  43.  
  44.   if (ck4 = 0)
  45.   {
  46.     remove(str_st_dir_txt + "cucheck.4");
  47.   }
  48.  
  49. }
  50.